home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / bug / libkpathsea4 / script < prev   
Text File  |  2009-10-07  |  2KB  |  88 lines

  1. #!/bin/bash
  2. # $Id: bug.script 2906 2007-05-29 11:01:20Z frank $
  3. set -e
  4.  
  5. cat <<EOF
  6.  
  7. Please read and follow the instructions in the first lines below
  8. the text: "-- Package-specific info:".
  9. Thank you.
  10.  
  11. Press ENTER to continue
  12. EOF
  13.  
  14. getkey
  15.  
  16. cat >&3 <<EOF
  17. If you report an error when running one of the TeX-related binaries 
  18. (latex, pdftex, metafont,...), or if the bug is related to bad or wrong
  19. output, please include a MINIMAL example input file that produces the
  20. error in your report. Don't forget to also include minimal examples of
  21. other files that are needed, e.g. bibtex databases. Often it also helps
  22. to include the logfile. Please, never send included pictures!
  23.  
  24. If your example file isn't short or produces more than one page of
  25. output (except when multiple pages are needed to show the problem),
  26. you can probably minimize it further. Instructions on how to do that
  27. can be found at
  28.  
  29. http://www.latex-einfuehrung.de/mini-en.html (english)
  30.  
  31. or 
  32.  
  33. http://www.latex-einfuehrung.de/mini.html (german)
  34.  
  35. ##################################
  36. minimal input file
  37.  
  38.  
  39. ##################################
  40. other files
  41.  
  42. EOF
  43.  
  44. # unset error exit since those files might not be present...
  45. set +e
  46. for dir in $(kpsexpand '$TEXMF' | sed -e 's/,/ /g;s/[!{}]//g;'); do
  47.   ls_R_files="$ls_R_files $(ls $dir/ls-R 2>/dev/null)";
  48. done
  49. ls_R_files="$ls_R_files $(ls /usr/share/texmf-texlive/ls-R 2>/dev/null)"
  50.  
  51. echo "######################################" >&3
  52. echo " List of ls-R files" >&3
  53. echo >&3
  54. for file in $ls_R_files; do
  55.   ls -l $file >&3
  56. #  echo >&3
  57. #  cat $file >&3
  58. #  echo "######################################" >&3
  59. done
  60.  
  61. echo "######################################" >&3
  62. echo " Config files" >&3
  63. for i in texmf.cnf fmtutil.cnf updmap.cfg ; do
  64.   f=$(kpsewhich --format='web2c files' $i)
  65.   if [ -z "$f" ] ; then
  66.     echo "Warning: $i cannot be found with kpsewhich!" >&3
  67.   else
  68.     ls -l $f >&3
  69.   fi
  70. done
  71. for i in language.dat ; do
  72.   f=$(kpsewhich -progname=latex $i)
  73.   if [ -z "$f" ] ; then
  74.     echo "Warning: $i cannot be found with kpsewhich!" >&3
  75.   else
  76.     ls -l $f >&3
  77.   fi
  78. done
  79.  
  80. echo "######################################" >&3
  81. echo " Files in /etc/texmf/web2c/" >&3
  82. ls -l /etc/texmf/web2c/ >&3
  83.  
  84. echo "######################################" >&3
  85. echo " md5sums of texmf.d" >&3
  86. md5sum /etc/texmf/texmf.d/* >&3
  87.  
  88.